home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / geomview / source.lha / Geomview / makefiles / mk.site.private < prev    next >
Text File  |  1993-12-07  |  3KB  |  76 lines

  1. # Local definitions.
  2.  
  3. # GEOMROOT is the absolute pathname of the directory where you've placed
  4. # the Geomview source; a typical value might be /usr/local/src/Geomview.
  5. # Its setting is built into the "geomview" shell script and (on the NeXT)
  6. # into Geomview.app/CONFIG.gv.  It's used for finding the the following items:
  7. #   - the example data files, living at ${GEOMROOT}/data/{geom,groups,...}/*
  8. #   - the main geomview startup script, ${GEOMROOT}/data/.geomview
  9. #   - the directory of external modules, ${GEOMVIEW}/modules/${MACHTYPE}/*
  10. #
  11. # You *must* edit this file to set the value of GEOMROOT before 
  12. # running 'make instprivate'.
  13.  
  14. GEOMROOT=
  15.  
  16.  
  17. # NOTE: The variable MACHTYPE has already been set by the time this file
  18. # is read; it's the type of computer we're on ("sgi" or "next").
  19. # You can use it in defining things here, but don't redefine it.
  20.  
  21. # BINDIR should be the pathname of the directory into which executable
  22. # programs are to be installed.  This should be a directory that is on
  23. # users' $path, like /usr/local/bin.
  24.  
  25. BINDIR = ${GEOM}/bin/${MACHTYPE}
  26.  
  27. # MMAPACKAGEDIR should be the pathname of the directory into which the
  28. # Mathematica packages (OOGL.m, etc.) are to be installed.  This should be some
  29. # directory that is on Mathematica's search path ($Path variable).
  30. # The "math" shell script defines the directories in $Path; on the NeXT,
  31. # they include /LocalApps/Mathematica.app/Library/Mathematica/Packages,
  32. # and on the Iris, <math-installation-dir>/Packages.
  33. # $Path also includes the user's home directory; if only one person will
  34. # use the mathematica-geomview connection, you could set MMAPACKAGEDIR
  35. # to that user's home directory.
  36. # If you don't have Mathematica, leave MMAPACKAGEDIR set to ${GEOM}/mathematica.
  37.  
  38. MMAPACKAGEDIR = ${GEOM}/mathematica
  39.  
  40. # MANDIR should be the pathname of the directory into which Unix-style
  41. # manual pages are to be installed.  The man pages will actually go into
  42. # subdirectories of this directory with names like "man1", "cat1", etc.
  43.  
  44. MANDIR = ${GEOM}/man
  45.  
  46. # NOTE:
  47. #
  48. # BINDIR, MMAPACKAGEDIR, and MANDIR are used by "make install" and not
  49. # by "make all" or "make".  In all cases, the directory (and all
  50. # necessary parent directories) is created if it does not yet exist.
  51. # These must have values in order for "make install" to work.  If you
  52. # want the keep the installation completely within the source tree,
  53. # use the following values:
  54. #    BINDIR = ${GEOMROOT}/bin/${MACHTYPE}
  55. #    MMAPACKAGEDIR = ${GEOMROOT}/mathematica
  56. #    MANDIR = ${GEOMROOT}/man
  57. # You should then arrange for ${GEOMROOT}/bin/${MACHTYPE} to be on
  58. # users' $path and for ${GEOMROOT}/mathematica to be on the Mathematica
  59. # search path ($Path variable).
  60.  
  61. #################################################################
  62. #
  63. # You can skip the rest of this file if you are not installing
  64. # on a NeXT.
  65.  
  66. # For NeXT installations, APPDIR should be the pathname of the
  67. # directory into which the Geomview.app application will be installed.
  68. # "make install" will install it there.  This is also used by other
  69. # scripts, in particular, the "geomview" script that is installed in
  70. # BINDIR, so if you move Geomview.app you should update APPDIR here
  71. # and re-install.
  72.  
  73. APPDIR=${GEOMROOT}/bin/${MACHTYPE}
  74.